Skip to content

Commit c44e470

Browse files
committed
TEMP use older proto to test for changes
1 parent 4223868 commit c44e470

2 files changed

Lines changed: 0 additions & 601 deletions

File tree

keeperapi/src/proto.d.ts

Lines changed: 0 additions & 158 deletions
Original file line numberDiff line numberDiff line change
@@ -88931,9 +88931,6 @@ export namespace PAM {
8893188931

8893288932
/** NhiUidEntry ksmNhi */
8893388933
ksmNhi?: (boolean|null);
88934-
88935-
/** NhiUidEntry appUid */
88936-
appUid?: (string|null);
8893788934
}
8893888935

8893988936
/** Represents a NhiUidEntry. */
@@ -88954,9 +88951,6 @@ export namespace PAM {
8895488951
/** NhiUidEntry ksmNhi. */
8895588952
public ksmNhi: boolean;
8895688953

88957-
/** NhiUidEntry appUid. */
88958-
public appUid: string;
88959-
8896088954
/**
8896188955
* Creates a new NhiUidEntry instance using the specified properties.
8896288956
* @param [properties] Properties to set
@@ -89163,158 +89157,6 @@ export namespace PAM {
8916389157
public static getTypeUrl(typeUrlPrefix?: string): string;
8916489158
}
8916589159

89166-
/** Properties of a SetNhiKsmEffectiveDateRequest. */
89167-
interface ISetNhiKsmEffectiveDateRequest {
89168-
89169-
/** SetNhiKsmEffectiveDateRequest effectiveDate */
89170-
effectiveDate?: (number|null);
89171-
}
89172-
89173-
/** Represents a SetNhiKsmEffectiveDateRequest. */
89174-
class SetNhiKsmEffectiveDateRequest implements ISetNhiKsmEffectiveDateRequest {
89175-
89176-
/**
89177-
* Constructs a new SetNhiKsmEffectiveDateRequest.
89178-
* @param [properties] Properties to set
89179-
*/
89180-
constructor(properties?: PAM.ISetNhiKsmEffectiveDateRequest);
89181-
89182-
/** SetNhiKsmEffectiveDateRequest effectiveDate. */
89183-
public effectiveDate: number;
89184-
89185-
/**
89186-
* Creates a new SetNhiKsmEffectiveDateRequest instance using the specified properties.
89187-
* @param [properties] Properties to set
89188-
* @returns SetNhiKsmEffectiveDateRequest instance
89189-
*/
89190-
public static create(properties?: PAM.ISetNhiKsmEffectiveDateRequest): PAM.SetNhiKsmEffectiveDateRequest;
89191-
89192-
/**
89193-
* Encodes the specified SetNhiKsmEffectiveDateRequest message. Does not implicitly {@link PAM.SetNhiKsmEffectiveDateRequest.verify|verify} messages.
89194-
* @param message SetNhiKsmEffectiveDateRequest message or plain object to encode
89195-
* @param [writer] Writer to encode to
89196-
* @returns Writer
89197-
*/
89198-
public static encode(message: PAM.ISetNhiKsmEffectiveDateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
89199-
89200-
/**
89201-
* Decodes a SetNhiKsmEffectiveDateRequest message from the specified reader or buffer.
89202-
* @param reader Reader or buffer to decode from
89203-
* @param [length] Message length if known beforehand
89204-
* @returns SetNhiKsmEffectiveDateRequest
89205-
* @throws {Error} If the payload is not a reader or valid buffer
89206-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
89207-
*/
89208-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): PAM.SetNhiKsmEffectiveDateRequest;
89209-
89210-
/**
89211-
* Creates a SetNhiKsmEffectiveDateRequest message from a plain object. Also converts values to their respective internal types.
89212-
* @param object Plain object
89213-
* @returns SetNhiKsmEffectiveDateRequest
89214-
*/
89215-
public static fromObject(object: { [k: string]: any }): PAM.SetNhiKsmEffectiveDateRequest;
89216-
89217-
/**
89218-
* Creates a plain object from a SetNhiKsmEffectiveDateRequest message. Also converts values to other types if specified.
89219-
* @param message SetNhiKsmEffectiveDateRequest
89220-
* @param [options] Conversion options
89221-
* @returns Plain object
89222-
*/
89223-
public static toObject(message: PAM.SetNhiKsmEffectiveDateRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
89224-
89225-
/**
89226-
* Converts this SetNhiKsmEffectiveDateRequest to JSON.
89227-
* @returns JSON object
89228-
*/
89229-
public toJSON(): { [k: string]: any };
89230-
89231-
/**
89232-
* Gets the default type url for SetNhiKsmEffectiveDateRequest
89233-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
89234-
* @returns The default type url
89235-
*/
89236-
public static getTypeUrl(typeUrlPrefix?: string): string;
89237-
}
89238-
89239-
/** Properties of a GetNhiKsmEffectiveDateResponse. */
89240-
interface IGetNhiKsmEffectiveDateResponse {
89241-
89242-
/** GetNhiKsmEffectiveDateResponse effectiveDate */
89243-
effectiveDate?: (number|null);
89244-
89245-
/** GetNhiKsmEffectiveDateResponse defaultDate */
89246-
defaultDate?: (number|null);
89247-
}
89248-
89249-
/** Represents a GetNhiKsmEffectiveDateResponse. */
89250-
class GetNhiKsmEffectiveDateResponse implements IGetNhiKsmEffectiveDateResponse {
89251-
89252-
/**
89253-
* Constructs a new GetNhiKsmEffectiveDateResponse.
89254-
* @param [properties] Properties to set
89255-
*/
89256-
constructor(properties?: PAM.IGetNhiKsmEffectiveDateResponse);
89257-
89258-
/** GetNhiKsmEffectiveDateResponse effectiveDate. */
89259-
public effectiveDate: number;
89260-
89261-
/** GetNhiKsmEffectiveDateResponse defaultDate. */
89262-
public defaultDate: number;
89263-
89264-
/**
89265-
* Creates a new GetNhiKsmEffectiveDateResponse instance using the specified properties.
89266-
* @param [properties] Properties to set
89267-
* @returns GetNhiKsmEffectiveDateResponse instance
89268-
*/
89269-
public static create(properties?: PAM.IGetNhiKsmEffectiveDateResponse): PAM.GetNhiKsmEffectiveDateResponse;
89270-
89271-
/**
89272-
* Encodes the specified GetNhiKsmEffectiveDateResponse message. Does not implicitly {@link PAM.GetNhiKsmEffectiveDateResponse.verify|verify} messages.
89273-
* @param message GetNhiKsmEffectiveDateResponse message or plain object to encode
89274-
* @param [writer] Writer to encode to
89275-
* @returns Writer
89276-
*/
89277-
public static encode(message: PAM.IGetNhiKsmEffectiveDateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
89278-
89279-
/**
89280-
* Decodes a GetNhiKsmEffectiveDateResponse message from the specified reader or buffer.
89281-
* @param reader Reader or buffer to decode from
89282-
* @param [length] Message length if known beforehand
89283-
* @returns GetNhiKsmEffectiveDateResponse
89284-
* @throws {Error} If the payload is not a reader or valid buffer
89285-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
89286-
*/
89287-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): PAM.GetNhiKsmEffectiveDateResponse;
89288-
89289-
/**
89290-
* Creates a GetNhiKsmEffectiveDateResponse message from a plain object. Also converts values to their respective internal types.
89291-
* @param object Plain object
89292-
* @returns GetNhiKsmEffectiveDateResponse
89293-
*/
89294-
public static fromObject(object: { [k: string]: any }): PAM.GetNhiKsmEffectiveDateResponse;
89295-
89296-
/**
89297-
* Creates a plain object from a GetNhiKsmEffectiveDateResponse message. Also converts values to other types if specified.
89298-
* @param message GetNhiKsmEffectiveDateResponse
89299-
* @param [options] Conversion options
89300-
* @returns Plain object
89301-
*/
89302-
public static toObject(message: PAM.GetNhiKsmEffectiveDateResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
89303-
89304-
/**
89305-
* Converts this GetNhiKsmEffectiveDateResponse to JSON.
89306-
* @returns JSON object
89307-
*/
89308-
public toJSON(): { [k: string]: any };
89309-
89310-
/**
89311-
* Gets the default type url for GetNhiKsmEffectiveDateResponse
89312-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
89313-
* @returns The default type url
89314-
*/
89315-
public static getTypeUrl(typeUrlPrefix?: string): string;
89316-
}
89317-
8931889160
/** Properties of a PAMUniversalSyncPreCheckRequest. */
8931989161
interface IPAMUniversalSyncPreCheckRequest {
8932089162

0 commit comments

Comments
 (0)